home *** CD-ROM | disk | FTP | other *** search
/ Educational Software Cooperative 4 / Educational Software Cooperative 4.iso / truemd23 / install.bat < prev    next >
DOS Batch File  |  1995-12-19  |  887b  |  35 lines

  1. rem INSTALL.BAT
  2. echo off
  3. cls
  4. echo.
  5. echo.              INSTALL TO HARD DISK (C:)
  6. echo.
  7. echo.  This INSTALL.BAT file will copy all program files to a 
  8. echo.  subdirectory on a hard disk C from a floppy in drive A.
  9. echo.  It does the following:
  10. echo.  
  11. echo.  C:              change to the C drive
  12. echo.  md TRUEMC       make the subdirectory TRUEMC 
  13. echo.  cd TRUEMC       change the current directory to TRUEMC 
  14. echo.  xcopy A:\*.*    copy everything on the A drive to TRUEMC 
  15. echo.
  16. echo.  The above commands can also be entered by hand, as is, or
  17. echo.  changed for your drive letters and desired subdirectory.
  18. echo.  Press the Print Screen Key to print a copy for reference.
  19. echo.
  20. choice  /c:YN  ...Install...
  21.  
  22. if errorlevel 2 goto END
  23. if errorlevel 1 goto DOIT
  24.  
  25. :DOIT
  26. rem echo.  doit
  27. C:
  28. md TRUEMC 
  29. cd TRUEMC 
  30. xcopy A:\*.*
  31. goto END
  32.  
  33. :END
  34. rem echo. end
  35.